FMeinicke's Wiki

Home

❯

LaTeX

❯

Check if document is using `twoside`

Check if document is using `twoside`

May 26, 20251 min read

  • latex/twoside
  • latex/if

twoside if

Source(s)

  • https://tex.stackexchange.com/a/360791/239888
  • this check is already provided by latex
\documentclass[
    twoside,
    ...
]{report}
 
% check for twoside
\if@twoside
    ...
\else
    ...
\fi
 

Graph View

Created with Quartz v4.5.0 © 2025

  • GitHub